home *** CD-ROM | disk | FTP | other *** search
/ By Popular Request 2.0 / By Popular Request 2.0 (Arsenal Computer).ISO / amiga_4 / m-tagp7.lha / M-TAG.H < prev    next >
C/C++ Source or Header  |  1994-01-21  |  931b  |  30 lines

  1. /***************************************************************************
  2.  
  3.  ⌐ copyright 1993 P. Eastham
  4.  
  5. *****************************************************************************/
  6.  
  7. /* USER:<uname>/M-Tag.CDL
  8.    This holds the list of files which have been deemed to be CD files. 
  9.    Sorted on the first field. */
  10.  
  11. struct M_Tag_CDL
  12. {
  13.   char    Filename[36]
  14.   char    Fdpath[53] /* The path which SHOULD be the comment. eg:
  15.                         FILE:125/5.fd */
  16. };
  17.  
  18.  
  19. /* T:<port>.MArea
  20.    This file holds the current users area list. If producing, it MUST have a
  21.    filenote of the users name as returned from T:<port>.User. It MUST also be
  22.    in assending order of file area. */
  23.  
  24. struct M_Tag_Area
  25. {
  26.   SHORT   Area_Number   /* The area of the number the user has access to. */
  27.   char    Area_Name[34] /* The name of the area the user has access to. */
  28.   char    Area_Path[24] /* The path to where the files are stored */
  29. };
  30.